home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / PALETTE.PAK / PALETTE.RC < prev    next >
Text File  |  1997-05-06  |  1KB  |  29 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows
  3. // Copyright (c) 1995, 1995 by Borland International, All Rights Reserved
  4. //----------------------------------------------------------------------------
  5. #ifndef WORKSHOP_INVOKED
  6. # include <windows.h>
  7. #endif
  8. #include <owl/owlapp.rc>        // Owl icon
  9. #include <owl\except.rc>
  10. #include "palette.h"
  11.  
  12. IDM_PALTEST MENU LOADONCALL MOVEABLE PURE DISCARDABLE
  13. {
  14.   MenuItem  "&About", CM_ABOUT
  15. }
  16.  
  17. IDD_ABOUT DIALOG 26, 29, 141, 120
  18. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  19. CAPTION "About "
  20. FONT 8, "MS Sans Serif"
  21. {
  22.  CTEXT "Palette Tester", -1, 12, 6, 116, 9, SS_CENTER | NOT WS_GROUP
  23.  CTEXT "Left button click to rotate colors in logical palette", -1, 12, 24, 116, 23, SS_CENTER | NOT WS_GROUP
  24.  CTEXT "ObjectWindows Demo", -1, 12, 66, 116, 12, SS_CENTER | NOT WS_GROUP
  25.  CTEXT "Copyright \251 1991, 1995", -1, 12, 75, 116, 10, SS_CENTER | NOT WS_GROUP
  26.  CTEXT "Borland International", -1, 12, 84, 116, 9, SS_CENTER | NOT WS_GROUP
  27.  PUSHBUTTON "OK", IDOK, 46, 99, 48, 14
  28. }
  29.